home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Developer CD Series 1998 August: Tool Chest
/
Dev.CD Aug 98 TC.toast
/
Sample Code
/
Snippets
/
Sound
/
Speech Recognition sample
/
_headers
/
SpeechCallbacks.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-11-15
|
462 b
|
16 lines
|
[
TEXT/CWIE
]
#ifndef __SPEACHCALLBACKS__
#define __SPEACHCALLBACKS__
#include <Speech.h>
OSErr SetSpeechDoneCallback (const SpeechChannel theSpeechChan);
OSErr SetWordCallback (const SpeechChannel theSpeechChan);
pascal void SpeechDoneCallback (const SpeechChannel theSpeechChan,
const long refCon);
pascal void WordCallback (const SpeechChannel theSpeechChan,
const long refCon,
const long wordPos,
const short wordLen);
#endif